Debabeler.WebHome (book view)
Search: \.*

Topics in Debabeler web: Changed: Changed by:

14_Dec_2006   30 May 2007 - 23:37 - NEW   Main.sneu

* Scott, Doug the debabeler conversion now gives the same coordinates as mri_convert for this image. thats great thanks a lot to you both.

* Doug Greve: Here's our C source file that has our code. There's a lot of stuff there, but hopefully you can piece it together.

* Hi Doug,

Thanks for sharing; you've obviously invested a lot of time in figuring out what's going on. I've been reading through the set of rules you posted, but I don't have enough experience (or test files) to correct the Debabeler translation. I can see Y and Z corrections that involve dPhaseFOV * sNormal.dCor, but it is not clear to me how it all comes together.

I was wondering if you'd be willing to share a snipet of code that explains how to code it?

Thanks for considering this request, Scott

* Doug Greve: 20,32 is where the first vox would have been had you collected a single slice centered at the center of the mosaic. So if the mosaic is 1.2 meters wide, then the 1st vox will be centered 0.6m from the center of the mosaic (and so outside of the scanner). I have put the full set of rules that I use here:

http://www.nmr.mgh.harvard.edu/~greve/dicom-unpack

* Doug Greve: I put quite a bit of effort into getting mri_convert to accurately reflect the geometry. The way that I test this is to collect multiple volumes at different resolutions, FoVs, and slice prescriptions. If the geometry is accurate (and the subject has not moved), then the matrix to map one volume to another can be completely predicted from the geometry of the volumes. This can be checked with tkregister2:

tkregister2 --targ f1.nii --mov f2.nii --regheader --reg /tmp/blah
I've run this hundreds of times, and it is always extremely accurate. I consider this test to be definitive. If you do not consider this a good test or find a place where it fails, then please let me know. Until then, I will assume that debabler is incorrect (meaning that I will leave y'all to resolve the differences :).

I can tell you one more thing to help you though. As you point out, the offsets given by the debabbler below are way outside of the FOV. Am I right in assuming that this is data from a Siemens scanner and that the volume has been mosaiced? If so, then you should know that the location of the first voxel (tag 20 32) is incorrect. That value is where the first voxel would have been had you collected a single slice the size of the mosaic.

* I am endeavouring to make a DICOM -> NIFTI file conversion. The Scanner is a SIEMENS 3T scanner and I am converting mosaiced images. I am using two tools: FreeSurfer / mri_convert - out of the box; LONI / debabler (V 2.5) - not out of the box. What we did was combine a Mapping file which handles our mosaics when converting to analyze and a Mapping file that handles our non-mosaiced images when converting to nifti into a mapping file that handles our mosaics for nifti. All we think we have done is deal with the framework, not the actual coordinate conversion code.

The two conversions give different results regarding coordinates.

Topic permissions
16_Nov_2005   27 Jul 2006 - 22:51 - NEW   Main.sneu
  • I'm very sorry for the delay of my answer. Honestly, I would like to thank you once again by all your efforts! I should have told you this almost two weeks ago... Please accept my apologies!

  • I am sorry that my efforts have proven insufficient for you. But I feel obligated to inform you about two aspects of your data: 1. The black voxels are occurring because the creator of the ANALYZE files made a mistake. For example, in the file you ftp'ed to me, the minimum and maximum pixel values are given as (-32768,32767) when the real minimum and maximum is (-32896, 32767). Further, the creator used 16-bit precision when writing the data, so if the values are -32767, -32768, -32769, -32770 then the values written are -32767, -32768, 32767, 32766. This means that you must manually correct all values less than -32768. For example, in the code I last emailed you, you can add the lines:
                    if (s < -32768) {
                        int diff = -(32768 + s);
                        s = -32768 + diff;
                    }

after the line:  int s = (b1 << 8) + (b2 << 0);

  • 2. The ANALYZE file format does not contain information about the orientation of the images (there is no way to know if the images are upside down because no information exists in the file to tell us). ANALYZE files are a bad way to store patient images because we do not know left from right. The ANALYZE to DICOM translation assumes the images are oriented according to the SPM standard. Therefore, if the images are upside down or in the wrong orientation, you will need to manually correct it (hopefully all of your images are in the same orientation, so you will only need to do this once). This can be done by changing the -1,0 in the Debabeler module "Image Orientation" (whichis in the "Create DICOM Images" module. The -1,0 refer to directional cosines and set the orientation of DICOM element (0020,0037). If you read up on directional cosines or experiment with values -1,0,1, you should be able to change the orientation to your preference. But I should point out that the ANALYZE file you ftp'ed me appears to be in SPM orientation (although I can't tell if the patient's left/right is correct). You will probably find that different DICOM viewers display the same DICOM data differently (so look for the coordinate axes). Because of these two reasons, I conclude that you will not find an automatic conversion from ANALYZE to DICOM. Again, my apologies for not offering you a better solution. But perhaps the above two points will help you find what you are looking for.

  • Thank you so much for your efforts, but please realize they continue to be almost useless for me. First, because I have 39 CDs (each one approximately with 45 pairs of ANALYZE files), and also because, even after trying your scrip for only one .img file, the correspondent DICOM images appear upside down and with black voxels scattered on them... Please be sure I realize your assistance means precious time for you... But, if you know a better alternative for the conversion I need, please let me know!

  • The reason the DICOM images are black is that the data in the ANALYZE file is signed (both negative and positive values). The ANALYZE to DICOM translation only handles unsigned data values. I've attached a java program you can use to convert your .img file from signed to unsigned. Then the translations should work. Instructions are below.
1.  compile:  javac SignedToUnsigned.java
2.  run:  java SignedToUnsigned 003.1001.25may99.3d.vol.img temp.img
3.  use new img:  mv temp.img 003.1001.25may99.3d.vol.img (unix)
  • I believe the ANALYZE 7.5 image data type is short (16 bits per voxel), but please find attached a pair of files to confirm this information.

  • What is the datatype (byte, short, float) of the ANALYZE image?

  • Sorry for bothering you again, but now that I found the output images and tried to see them with a DICOM viewer (I tried eFilm, DicomWorks, and Cheshire), they appear completely black... I can't find anything on them, even after trying to adjust the window level!...

  • Thank you very much! I already realized what's happened. My mistake...and some inexperience... Sorry!

  • The DICOM files should be in the same directory the ANALYZE files are in. Perhaps an error occurred during the translation? If you scroll through the message box at the bottom, there may be an error message.

  • I tried several times to convert Analyze 7.5 image files into DICOM files. I used Debabeler 2.3 on a Windows XP environment for that purpose. First, I chose the xml file AnalyzeToDicom_10Sep2004 from the load mappings box, then I selected the input files and the output source (DICOM), and finally ran the program. Apparently, the translation occurred successful, but I can't find the output files?!...

Topic permissions
19_Jun_2006   27 Jul 2006 - 22:15 - NEW   Main.sneu
  • I'm afraid this error indicates to me that the java installation is not correct on your linux box. I would recommend deinstalling java and then reinstalling it.

  • I´m trying very hard to have Debabeler working on my linux 64-bit machine, without succeeding. The linux console always gives the (long!) error message. Any hint? I do appreciate your help. It goes fantastic on my Windows system, but I would prefer to use the linux machine. By the way, hereś the architecture: Linux neuron 2.6.16-1.2133_FC5 #1 SMP Tue Jun 6 00:51:53 EDT 2006 x86_64 x86_64 x86_64 GNU/Linux

neuron/usr/local/Debabeler/debabeler_2_5> ./run.sh
Exception in thread "main" java.lang.ExceptionInInitializerError
   at java.lang.Class.initializeClass(libgcj.so.7)
   at java.lang.Class.forName(libgcj.so.7)
   at
edu.ucla.loni.afni.plugin.AFNIImageWriterSpi.class$(AFNIImageWriterSpi.java:42)
   at
edu.ucla.loni.afni.plugin.AFNIImageWriterSpi.<init>(AFNIImageWriterSpi.java:54)
   at java.lang.Class.newInstance(libgcj.so.7)
   at gnu.classpath.ServiceProviderLoadingAction.run(libgcj.so.7)
   at java.security.AccessController.doPrivileged(libgcj.so.7)
   at
gnu.classpath.ServiceFactory$ServiceIterator.loadNextServiceProvider(libgcj.so.7)
   at gnu.classpath.ServiceFactory$ServiceIterator.<init>(libgcj.so.7)
   at gnu.classpath.ServiceFactory.lookupProviders(libgcj.so.7)
   at
javax.imageio.spi.IIORegistry.registerApplicationClasspathSpis(libgcj.so.7)
   at javax.imageio.spi.IIORegistry.<init>(libgcj.so.7)
   at javax.imageio.spi.IIORegistry.getDefaultInstance(libgcj.so.7)
   at edu.ucla.loni.imageio.DualIO.getFileNameAssociators(DualIO.java:39)
   at
edu.ucla.loni.debabel.events.engine.SourceFileManager.<init>(SourceFileManager.java:40)
   at
edu.ucla.loni.debabel.events.engine.DebabelerEngine.<init>(DebabelerEngine.java:145)
   at
edu.ucla.loni.debabel.events.engine.DebabelerEngine.<init>(DebabelerEngine.java:133)
   at
edu.ucla.loni.debabel.events.engine.DebabelerEngine.<init>(DebabelerEngine.java:118)
   at
edu.ucla.loni.debabel.events.engine.DebabelerViewEngine.<init>(DebabelerViewEngine.java:77)
   at
edu.ucla.loni.debabel.events.FrameEventHandler.<init>(FrameEventHandler.java:96)
   at
edu.ucla.loni.debabel.events.FrameEventHandler.<clinit>(FrameEventHandler.java:57)
   at java.lang.Class.initializeClass(libgcj.so.7)
   at
edu.ucla.loni.debabel.DebabelerFrameManager.<init>(DebabelerFrameManager.java:49)
   at
edu.ucla.loni.debabel.DebabelerFrameManager.<clinit>(DebabelerFrameManager.java:41)
   at java.lang.Class.initializeClass(libgcj.so.7)
   at edu.ucla.loni.debabel.Debabeler.start(Debabeler.java:56)
   at edu.ucla.loni.debabel.Debabeler.main(Debabeler.java:131)
Caused by: java.lang.IllegalArgumentException: wrong child policy
   at javax.imageio.metadata.IIOMetadataFormatImpl.<init>(libgcj.so.7)
   at
edu.ucla.loni.imageio.AppletFriendlyIIOMetadataFormat.<init>(AppletFriendlyIIOMetadataFormat.java:41)
   at
edu.ucla.loni.afni.plugin.AFNIMetadataFormat.<init>(AFNIMetadataFormat.java:45)
   at
edu.ucla.loni.afni.plugin.AFNIMetadataFormat.<clinit>(AFNIMetadataFormat.java:38)
   at java.lang.Class.initializeClass(libgcj.so.7)
   ...26 more

Topic permissions
21_Jun_2006   27 Jul 2006 - 21:59 - NEW   Main.sneu
  • It is true that the ANALYZE file header does not contain orientation information. However, the Debabeler translation assumes that the ANALYZE file has been written using the SPM orientation, and so adds an orientation to the NIFTI file it creates. MRIcro apparently does notadd an orientation.

  • Thanks again for your explanation. As you said, when converting dicom file to analyze format, it loses the information about orientation, etc. As a result, there should not be any orientatin information in an analyze file header. So If I convert an analyze pair to nifti format using Debabeler and FSL, both results should not contain any orientation information(I think the results should be the same). But why the retult files are different and MRIcro only shows warning messages when opening the nifti file created by Debabeler? I attached an analyze pair and two nifti files created by Debabeler and FSL. Could you please take a look? dicom-1.img and dicom-1.hdr are the analyze files for test. dicom-1_FSL.nii was converted by FSL avwchfiletype dicom-1_Debabeler.nii was converted by Debabeler using AnalyzeToNifti_18Feb2005.xml mapping file. Thank you very much.

  • Technically, both the Debabeler and FSL avwchfiletype programs are mapping the NIFTI fields correctly. The Debabeler uses the "recommended" method, whereas FSL avwchfiletype uses the old ANALYZE method (which created problems and motivated people to define NIFTI!). Please keep in mind that the ANALYZE file format does not contain information about the orientation of the scanned subject. When someone sends you an ANALYZE file, you cannot be sure which way the subject's right/left are. Yes, there is a hard-to-find implicit assumption as to what the orientation is, but in reality few people follow it (e.g., radiologists and neurologists flip right/left and create ANALYZE files the way they want to). I expect that the MRIcro warnings are telling you that you have some type of orientation problem with your data. When you created your ANALYZE file, you effectively removed the orientation and lost the ability to determine the subject's left/right. So you might get rid of the warnings by first converting to ANALYZE, but you may in effect be deceiving yourself by removing information that you should know. You can read more about the NIFTI standard by going to their web site and downloading the C source code (look at the comments in nifti1.h). For your convenience, I have attached to this email a segment from that file that I think is relevant here.

  • Thanks for your response. The nifti file converted with the mapping xml you sent me can be opened by fslview. However, MRICro(Windows version) still gives warning message. So I did the following test: I converted a dicom file to analzye format using debabler. Then I converted the analyze file to nifti format using both debabeler and avachfiletype(a tool in FSL). I found that the nifti file converted by FSL/avwchfiletype can be opened by MRICRO without any warning message while the one converted by debabeler can not. I checked the fields in the header of the two nifit files(converted with debabeler and FSL avwchfiletype). I found that the following fields are different: qform_code: 1(debabeler) 0(avwchfiletype) || scl_slope: 0(debabeler) 1(avwchfiletype) Does this indicate either debabeler or FSL avwchfiletype maps the fields in NIFTI header incorrectly?

  • I converted the Siemens Mosaic DICOM file you sent to NIFTI and tried it in FSLview. The message I saw was: This program has not been compiled for this data type Finished which means that FSLview doesn't support 16-bit unsigned short data. But your data doesn't need that precision. So I tried specifying it as 16-bit signed data and it worked for me; please see the attached. (If you compare the attached translation with the one you have, the only difference is that the "datatype" is now 4 instead of 512). As for MRIcro, I downloaded the linux version but I don't see any option to load a NIFTI file. At any rate, I think the message is warning you that you are attempting to combine two data sets that are not in the same 3d space. So it doesn't appear to be a file conversion issue.

  • I found that the Nifti file converted by using AnalyzeToNifti_18Feb2005.xml can not be opened with FSLview. Another viewer, MRICRO can open the file but shows some warning messages below: The Nifti file specifies an affine rotation [QForm>0]. MRICro will display the raw data. Warning: The nifti image includes a rotation transformation. You should reslice the data before attempting overlay the image. Also the same problem occurs when using DicomSiemensMosaicToOneFileNifti_05Apr2006.xml to convert Siemens Mosaic Dicom data to Nifti format. I have attached two dicom files I tried to convert. One is in standard dicom format, the other is in siemens mosaic dicom format. Could you please have a look?

  • Yes, you can specify it to be whatever you like. Please see the Debabeler_Usage.pdf in the doc directory, bottom of page 13.

  • Thank you for your help. DicomSiemensMosaicToAnalyze_10Sep2004.xml does not work for my data. It works when using xml/contrib/RogerMosaicAndRegular_24Nov2004.xml. Is there a way to change the default output files' location in RogerMosaicAndRegular_24Nov2004.xml?

  • Have you tried the translations: xml/contrib/RogerMosaicAndRegular_24Nov2004.xml xml/DicomSiemensMosaicToAnalyze_10Sep2004.xml in the Debabeler XML directory? If these don't work, I may have to ask you for a sample of your data to make a better determination.

  • I am trying to use LONI Debabler to convert EPI fMRI dicom data to analyze or nifti format. However I found that debabeler can not convert them correctly using the existing mappings. Is there a way to customize the mapping so that it can recognize and convert epi fMRI data or do you have any mapping xml file for epi fmri dicom conversion?

Topic permissions
27_Jul_2006   27 Jul 2006 - 21:32 - NEW   Main.sneu
  • Fantastic!! Thank you. I will recommend your software to others. Really appreciate all your help!

  • That's a pretty big file; you will need to increase the memory to process it. If you go to your Debabeler directory, you need to edit the file called "run.bat". Open up an editor and change: -Xmx200M to -Xmx800M and try it again.

  • I can do that. I temporarily have access to a folder through ASU where I could upload the file and you could get it.

  • I guess I'd have to see the analyze file. Would you be willing to ftp it to me? Info below. Since there is very little info in the analyze file, producing DICOM files that work with your software seems unlikely, although I guess you can try.

  • Thanks, Scott. I did include all the textual output. It just ends there and doesn't seem to want to complete the translation. Any advice? Unfortunately, I don't have original DICOM files and the modeling software I'm using doesn't accept Analyze input, only DICOM.

  • It doesn't look like you included all the textual output, so I don't see any error (unless it just hung). In general, converting from ANALYZE to DICOM is a very bad thing to do. If you have access to the original DICOM files, I recommend that you use those.

  • Hi, I'm a researcher at Arizona State University and I'm trying desperately to convert Analyze files to DICOM format with your Debabeler, but I must be doing something wrong. I load the mappings for Analyze->DICOM and then I select the .hdr and .img files that are in Analyze format as the input files and then I select output as DICOM and then I press Debabel. These are the results I get and the files are not translated. HELP! Thank you!!

LONI Debabeler 2.5
Registered the mapping "Source Identification".
Registered the mapping "ANALYZE Group Assignment".
Registered the mapping "ANALYZE to DICOM Translation".
----------
BEGIN:  Determine the names of the sources that produced the input
files.
Identified the source "analyze_source" for the files:
/C:/Documents and Settings/cschrei/WinRAR decomp Chimp
scans/pan_troglodytes_amnhL14CH2_rawvol.hdr
/C:/Documents and Settings/cschrei/WinRAR decomp Chimp
scans/pan_troglodytes_amnhL14CH2_rawvol.img
Number of successfully identified sources = 1.
END:  Determine the names of the sources that produced the input files.
----------
BEGIN:  Determine how the input files are grouped together.
Assigned the group id "/C:/Documents and Settings/cschrei/WinRAR decomp
Chimp scans/pan_troglodytes_amnhL14CH2_rawvol.hdr" to the files:
/C:/Documents and Settings/cschrei/WinRAR decomp Chimp
scans/pan_troglodytes_amnhL14CH2_rawvol.hdr
/C:/Documents and Settings/cschrei/WinRAR decomp Chimp
scans/pan_troglodytes_amnhL14CH2_rawvol.img
Number of group ids successfully assigned = 1.
END:  Determine how the input files are grouped together.
----------
BEGIN:  Convert the input file groups into output files of the target.
Number of groups to translate = 1.

Topic permissions
30_Jun_2006   27 Jul 2006 - 22:10 - NEW   Main.sneu
  • It is unlikely because 99% of usage involves DICOM -> ANALYZE conversions (not ANALYZE -> DICOM). This is because scanners output DICOM and most people start with that. The conversion DICOM -> ANALYZE loses 95% of the information. So converting back to DICOM is somewhat difficult to do.

  • Thank you for your fast response. Do you think to develop this functionality in an immediate future?

  • That option is not currently available. Sorry for the inconvenience.

  • We would like to translate SPM files from fMRI experiments (450 volumes each of them 32 slices) to DICOM files We try your Analyze>DICOM translator but it outputs 450*32 dcm files (we expect 450 dcm files) Could you explain us how to parameterize the translator if the option is available

Topic permissions
31_Jan_2007   24 Jul 2007 - 15:56 - NEW   Main.sneu
  • UPDATE: The Inspector is now available for viewing metadata from many different file formats.

  • Here are answers to your questions (in order):
    • 1) The DiD removes the patient name and other strings from each file. The birthdate and study dates/times are not removed. Numbers are not removed if they are not stored as strings.
    • 2) The image data is not modified in any way.
    • 3) We typically use an in-house tool to view metadata. It has bugs and therefore is not available to the public. I don't know that much about other tools out there.
    • 4) Type "java -jar loniDeidentifyDebablet.jar -help" for the command line options. Each time you run with command line options, each file you specify will receive the unique id you specify. To assign many unique ids, you must execute a command for each unique id.

  • I am using the LONI DiD bablet to de-identify GE Genesis files as well as ANALYZE files and have a few of questions:
    • 1) Does the DiD algorithm only removes names from the header, not numbers? (i.e. birthdate)
    • 2) What, if anything, does the DiD algorithm do to the image data?(Does is "scramble" the skull voxels?)
    • 3) What tool do you recommend using to verify that all HIPPAA data has been removed from the header after running the DiD bablet?
    • 4) How can I batch files to be de-identified and assign unique IDs to each file?

Topic permissions
31_Mar_2006   27 Jul 2006 - 22:27 - NEW   Main.sneu
  • Sorry, I don't have a 4D translation. The images displayed in MRIcro are up to MRIcro; different viewers will show them differently.

  • Thanks, this works well. How about creating a 4D stack from the Siemens Mosaic Dicom volumes? BTW, when I look at the .nii files with MRIcro, they are upside down. Could you please explain?

  • Please give this a try.

  • Is there a DicomSiemensMosaictoOneFileNIFTI conversion available? I have read that SPM5 can read these.

  • It wasn't the file name, the number "-0.3842953174286 " was stuck in a DICOM field that is defined to be at most 16 characters (it has 17). I removed the 16 character check.

  • That did the trick. Do you think that the file name issue is peculiar to our Siemens equipment? Should I let them know? BTW, MRIcro shows the image rotated 180 degrees. I presume there is another viewer for NIFTI files..........

  • It looks like the space after that negative number is causing problems. I've removed the restriction on the size; please try the attachment.

  • I enclose the output from Debabeler from an attempt to translate one of the Siemens Mosaic files in Part 10 format to 2 file NIFTI. Any ideas? Do you need me to send one of the images?

LONI Debabeler 2.4
Registered the mapping "Source Identification".
Registered the mapping "Siemens Mosaic DICOM Group Assignment".
Registered the mapping "Siemens Mosaic DICOM to 2-File NIFTI Translation".
----------
BEGIN:  Determine the names of the sources that produced the input files.
Identified the source "siemens_mosaic_dicom" for the files:
/C:/Documents and Settings/JAY/Desktop/Motor fMRI/03311143/27590773
Number of successfully identified sources = 1.
END:  Determine the names of the sources that produced the input files.
----------
BEGIN:  Determine how the input files are grouped together.
Assigned the group id "/C:/Documents and Settings/JAY/Desktop/Motor fMRI/03311143/27590773" to the files:
/C:/Documents and Settings/JAY/Desktop/Motor fMRI/03311143/27590773
Number of group ids successfully assigned = 1.
END:  Determine how the input files are grouped together.
----------
BEGIN:  Convert the input file groups into output files of the target.
Number of groups to translate = 1.
* Source Loading Error
...[ Unable to set data. ]...
...[ Could not map values from the DOM tree "edu_ucla_loni_jdicom_stream_1.0" to the Metadata Tree "edu_ucla_loni_jdicom_stream_1.0". ]...
...[ Could not map values from the DOM tree "DATA_SET" to the Metadata Tree "DATA_SET". ]...
...[ Could not map values from the DOM tree "00200037" to the Metadata Tree "00200037". ]...
...[ Could not map values from the DOM tree "VALUE" to the Metadata Tree "VALUE". ]...
...[ The value "-0.3842953174286 " does not satisfy the restriction "Range Restriction". ]...
* Unable to decode and read data for "siemens_mosaic_dicom" from the files:
...[ /C:/Documents and Settings/JAY/Desktop/Motor fMRI/03311143/27590773 ]...
* Group Translation Error
...[ Unable to load all the source data. ]...
* Unable to translate (siemens_mosaic_dicom) to (two_file_nifti) involving the files:
...[ /C:/Documents and Settings/JAY/Desktop/Motor fMRI/03311143/27590773 ]...
Number of successful translations = 0.
END:  Convert the input file groups into output files of the target.

  • I've downloaded your Debabeler software to convert my Siemens mosaic fMRI data to NIFTI. It works fine if the input data is in the Siemens native .ima format, but not for the DICOM outputted format ( Part 10 I presume)which I burned to a CD with its Dicomdir. There are input errors during the translation phase. Can you please advise?

Topic permissions
WebChanges   16 Aug 2001 - 19:58 - NEW   PeterThoeny
Topics in Debabeler web: Changed: (now 13:48) Changed by:

WebStatistics 22 Nov 2009 - 13:18 - r1.983 Main.guest
Statistics for Debabeler Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic save and uploads: Nov 2009 8822 0 ...
 
WebPreferences 17 Aug 2007 - 01:24 - r1.11 DavidHasson
Debabeler Web Preferences The following settings are web preferences of the Debabeler web. These preferences overwrite the site-level preferences in TWIKIWEB . WIKIPREFSTOPIC ...
 
31_Jan_2007 24 Jul 2007 - 15:56 - NEW Main.sneu
UPDATE: The Inspector is now available for viewing metadata from many different file formats. Here are answers to your questions (in order): 1) The !DiD removes the ...
 
WebHome 24 Jul 2007 - 15:42 - r1.6 Main.sneu
Contact Information Scott Neu Laboratory of Neuro Imaging (LONI) Email: neu@loni.ucla.edu (Include the word "Debabeler" in the email subject line) NEVER email files ...
 
14_Dec_2006 30 May 2007 - 23:37 - NEW Main.sneu
Scott, Doug the debabeler conversion now gives the same coordinates as mri convert for this image. thats great thanks a lot to you both. Doug Greve: Here's our C ...
 
16_Nov_2005 27 Jul 2006 - 22:51 - NEW Main.sneu
I'm very sorry for the delay of my answer. Honestly, I would like to thank you once again by all your efforts! I should have told you this almost two weeks ago.. ...
 
31_Mar_2006 27 Jul 2006 - 22:27 - NEW Main.sneu
Sorry, I don't have a 4D translation. The images displayed in MRIcro are up to MRIcro; different viewers will show them differently. Thanks, this works well. How ...
 
19_Jun_2006 27 Jul 2006 - 22:15 - NEW Main.sneu
I'm afraid this error indicates to me that the java installation is not correct on your linux box. I would recommend deinstalling java and then reinstalling it. I ...
 
30_Jun_2006 27 Jul 2006 - 22:10 - NEW Main.sneu
It is unlikely because 99 of usage involves DICOM ANALYZE conversions (not ANALYZE DICOM). This is because scanners output DICOM and most people start with that ...
 
21_Jun_2006 27 Jul 2006 - 21:59 - NEW Main.sneu
It is true that the ANALYZE file header does not contain orientation information. However, the Debabeler translation assumes that the ANALYZE file has been written ...
 
27_Jul_2006 27 Jul 2006 - 21:32 - NEW Main.sneu
Fantastic!! Thank you. I will recommend your software to others. Really appreciate all your help! That's a pretty big file; you will need to increase the memory to ...
 
WebNotify 28 Aug 2004 - 07:30 - r1.4 PeterThoeny
This is a subscription service to be automatically notified by e-mail when topics change in this Debabeler web. This is a convenient service, so you do not have to ...
 
WebLeftBar 16 Aug 2004 - 05:52 - NEW ArthurClemens?
INCLUDINGWEB Web INCLUDINGWEB Web Home Changes Index Search Webs WEBLIST{" $name" separator ""} INCLUDE{" MAINWEB . WIKINAME LeftBar" warn "Create personal sidebar ...
 
WebRss 16 Aug 2004 - 03:27 - r1.2 PeterThoeny
TWiki's Debabeler web SCRIPTURL /view SCRIPTSUFFIX /Debabeler The Debabeler web of TWiki. TWiki is a Web-Based Collaboration Platform for the Corporate World. INCLUDE ...
 
WebSearchAdvanced 18 Jan 2004 - 10:52 - NEW PeterThoeny
INCLUDE{" TWIKIWEB .WebSearchAdvanced"}
 
WebIndex 24 Nov 2001 - 11:41 - r1.2 PeterThoeny
SEARCH{"\. " scope "topic" regex "on" nosearch "on"} See also the faster WebTopicList
 
WebTopicList 24 Nov 2001 - 11:40 - NEW PeterThoeny
TOPICLIST{" $name "} See also the verbose WebIndex.
 
WebChanges 16 Aug 2001 - 19:58 - NEW PeterThoeny
INCLUDE{" TWIKIWEB .WebChanges"}
 
WebSearch 08 Aug 2001 - 05:26 - NEW PeterThoeny
INCLUDE{" TWIKIWEB .WebSearch"}
 

Number of topics: 19

WebHome   24 Jul 2007 - 15:42 - r1.6   Main.sneu

Contact Information

  • Scott Neu
  • Laboratory of Neuro Imaging (LONI)
  • Email: neu@loni.ucla.edu (Include the word "Debabeler" in the email subject line)
  • NEVER email files containing patient information: you can use the LONI Deidentification Debablet to remove this information

Debabeler Documentation

Debabeler Communications

Topic permissions
WebIndex   24 Nov 2001 - 11:41 - r1.2   PeterThoeny
Topics in Debabeler web: Changed: (now 13:48) Changed by:

14_Dec_2006 30 May 2007 - 23:37 - NEW Main.sneu
Scott, Doug the debabeler conversion now gives the same coordinates as mri convert for this image. thats great thanks a lot to you both. Doug Greve: Here's our C ...
 
16_Nov_2005 27 Jul 2006 - 22:51 - NEW Main.sneu
I'm very sorry for the delay of my answer. Honestly, I would like to thank you once again by all your efforts! I should have told you this almost two weeks ago.. ...
 
19_Jun_2006 27 Jul 2006 - 22:15 - NEW Main.sneu
I'm afraid this error indicates to me that the java installation is not correct on your linux box. I would recommend deinstalling java and then reinstalling it. I ...
 
21_Jun_2006 27 Jul 2006 - 21:59 - NEW Main.sneu
It is true that the ANALYZE file header does not contain orientation information. However, the Debabeler translation assumes that the ANALYZE file has been written ...
 
27_Jul_2006 27 Jul 2006 - 21:32 - NEW Main.sneu
Fantastic!! Thank you. I will recommend your software to others. Really appreciate all your help! That's a pretty big file; you will need to increase the memory to ...
 
30_Jun_2006 27 Jul 2006 - 22:10 - NEW Main.sneu
It is unlikely because 99 of usage involves DICOM ANALYZE conversions (not ANALYZE DICOM). This is because scanners output DICOM and most people start with that ...
 
31_Jan_2007 24 Jul 2007 - 15:56 - NEW Main.sneu
UPDATE: The Inspector is now available for viewing metadata from many different file formats. Here are answers to your questions (in order): 1) The !DiD removes the ...
 
31_Mar_2006 27 Jul 2006 - 22:27 - NEW Main.sneu
Sorry, I don't have a 4D translation. The images displayed in MRIcro are up to MRIcro; different viewers will show them differently. Thanks, this works well. How ...
 
WebChanges 16 Aug 2001 - 19:58 - NEW PeterThoeny
INCLUDE{" TWIKIWEB .WebChanges"}
 
WebHome 24 Jul 2007 - 15:42 - r1.6 Main.sneu
Contact Information Scott Neu Laboratory of Neuro Imaging (LONI) Email: neu@loni.ucla.edu (Include the word "Debabeler" in the email subject line) NEVER email files ...
 
WebIndex 24 Nov 2001 - 11:41 - r1.2 PeterThoeny
SEARCH{"\. " scope "topic" regex "on" nosearch "on"} See also the faster WebTopicList
 
WebLeftBar 16 Aug 2004 - 05:52 - NEW ArthurClemens?
INCLUDINGWEB Web INCLUDINGWEB Web Home Changes Index Search Webs WEBLIST{" $name" separator ""} INCLUDE{" MAINWEB . WIKINAME LeftBar" warn "Create personal sidebar ...
 
WebNotify 28 Aug 2004 - 07:30 - r1.4 PeterThoeny
This is a subscription service to be automatically notified by e-mail when topics change in this Debabeler web. This is a convenient service, so you do not have to ...
 
WebPreferences 17 Aug 2007 - 01:24 - r1.11 DavidHasson
Debabeler Web Preferences The following settings are web preferences of the Debabeler web. These preferences overwrite the site-level preferences in TWIKIWEB . WIKIPREFSTOPIC ...
 
WebRss 16 Aug 2004 - 03:27 - r1.2 PeterThoeny
TWiki's Debabeler web SCRIPTURL /view SCRIPTSUFFIX /Debabeler The Debabeler web of TWiki. TWiki is a Web-Based Collaboration Platform for the Corporate World. INCLUDE ...
 
WebSearch 08 Aug 2001 - 05:26 - NEW PeterThoeny
INCLUDE{" TWIKIWEB .WebSearch"}
 
WebSearchAdvanced 18 Jan 2004 - 10:52 - NEW PeterThoeny
INCLUDE{" TWIKIWEB .WebSearchAdvanced"}
 
WebStatistics 22 Nov 2009 - 13:18 - r1.983 Main.guest
Statistics for Debabeler Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic save and uploads: Nov 2009 8822 0 ...
 
WebTopicList 24 Nov 2001 - 11:40 - NEW PeterThoeny
TOPICLIST{" $name "} See also the verbose WebIndex.
 

Number of topics: 19

See also the faster WebTopicList

WebLeftBar   16 Aug 2004 - 05:52 - NEW   ArthurClemens?
WebNotify   28 Aug 2004 - 07:30 - r1.4   PeterThoeny
This is a subscription service to be automatically notified by e-mail when topics change in this Debabeler web. This is a convenient service, so you do not have to come back and check all the time if something has changed. To subscribe, please add a bullet with your WikiName in alphabetical order to this list:

Format: TWiki handles entries in bullet list (<space><space><space>*) format containing the WikiName of a user; a WikiName with e-mail address; or a TWikiGroup. Examples:

  • Main.FredBloggs
  • Main.FredBloggs - secondary@home.com
  • Main.EngineeringGroup

The first entry is the default form, the notification gets sent to the e-mail address specified in the user's home page. The second entry lists an alternative e-mail address. The third entry specifies a group, the notification gets sent to each member of the group.

Related topics: WebChangesAlert, TWikiUsers, TWikiRegistration

WebPreferences   17 Aug 2007 - 01:24 - r1.11   DavidHasson

Debabeler Web Preferences

The following settings are web preferences of the Debabeler web. These preferences overwrite the site-level preferences in TWikiPreferences, and can be overwritten by user preferences (your personal topic, eg: TWikiGuest in the Main web).

Preferences:

  • List of topics of the TWiki.Debabeler web:

  • Web specific background color: (Pick a lighter one of the StandardColors)
    • Set WEBBGCOLOR = #cc99cc

  • List this web in the SiteMap:
    • If yes, set SITEMAPLIST to on, do not set NOSEARCHALL, and add the "what" and "use to..." description for the site map. Make sure to list only links that include the name of the web, e.g. Debabeler.Topic links.
    • Set SITEMAPLIST = on
    • Set SITEMAPWHAT = Debabeler Site
    • Set SITEMAPUSETO = ...find information about the Debabeler

  • Exclude web from a web="all" search: (Set to on for hidden webs)
    • Set NOSEARCHALL =

  • Prevent automatic linking of WikiWords and acronyms (if set to on); link WikiWords (if empty); can be overwritten by web preferences:
    • Set NOAUTOLINK =
    • Note: Use the [[...][...]] syntax to link topics in case you disabled WikiWord linking. The <noautolink> ... </noautolink> syntax can be used to prevents links within a block of text.

  • Default template for new topics and form(s) for this web:
    • WebTopicEditTemplate?: Default template for new topics in this web. (Site-level is used if topic does not exist)
    • TWiki.WebTopicEditTemplate: Site-level default template
    • TWikiForms: How to enable form(s)
    • Set WEBFORMS =

  • Users or groups who are not / are allowed to view / change / rename topics in the Debabeler web: (See TWikiAccessControl)
    • Set DENYWEBVIEW =
    • Set ALLOWWEBVIEW =
    • Set DENYWEBCHANGE =
    • Set ALLOWWEBCHANGE =
    • Set DENYWEBRENAME =
    • Set ALLOWWEBRENAME =

  • Users or groups allowed to change or rename this WebPreferences topic: (I.e. TWikiAdminGroup)

  • Web preferences that are not allowed to be overridden by user preferences:
    • Set FINALPREFERENCES = NOSEARCHALL, ATTACHFILESIZELIMIT, WIKIWEBMASTER, WEBCOPYRIGHT, WEBTOPICLIST, DENYWEBVIEW, ALLOWWEBVIEW, DENYWEBCHANGE, ALLOWWEBCHANGE, DENYWEBRENAME, ALLOWWEBRENAME

Notes:

  • A preference is defined as:
    6 spaces * Set NAME = value
    Example:
    • Set WEBBGCOLOR = #FFFFC0
  • Preferences are used as TWikiVariables by enclosing the name in percent signs. Example:
    • When you write variable %WEBBGCOLOR% , it gets expanded to #cc99cc .
  • The sequential order of the preference settings is significant. Define preferences that use other preferences first, i.e. set WEBCOPYRIGHT before WIKIWEBMASTER since %WEBCOPYRIGHT% uses the %WIKIWEBMASTER% variable.
  • You can introduce new preferences variables and use them in your topics and templates. There is no need to change the TWiki engine (Perl scripts).

Related Topics:

WebRss   16 Aug 2004 - 03:27 - r1.2   PeterThoeny
TWiki's Debabeler web http://www.loni.ucla.edu/twiki/bin/view/Debabeler The Debabeler web of TWiki. TWiki is a Web-Based Collaboration Platform for the Corporate World. en-us Copyright 2009 Laboratory of Neuro Imaging, UCLA. TWiki Administrator [webmaster@loni.ucla.edu] TWiki Administrator [webmaster@loni.ucla.edu] TWiki TWiki.Debabeler LONI Wiki Home.Debabeler http://www.loni.ucla.edu/twiki/bin/view/Debabeler http://www.loni.ucla.edu/~dhasson/images/LONI_Collab_wh_60h.gif WebStatistics http://www.loni.ucla.edu/twiki/bin/view/Debabeler/WebStatistics?t=2009-11-22T13:18Z Statistics for Debabeler Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic save and uploads: Nov 2009 8822 0 ... (last changed by guest) 2009-11-22T13:18Z guest 1.983 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/WebStatistics http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/WebStatistics WebPreferences http://www.loni.ucla.edu/twiki/bin/view/Debabeler/WebPreferences?t=2007-08-17T01:24Z Debabeler Web Preferences The following settings are web preferences of the Debabeler web. These preferences overwrite the site-level preferences in TWIKIWEB . WIKIPREFSTOPIC ... (last changed by DavidHasson) 2007-08-17T01:24Z dhasson 1.11 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/WebPreferences http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/WebPreferences 31_Jan_2007 http://www.loni.ucla.edu/twiki/bin/view/Debabeler/31_Jan_2007?t=2007-07-24T15:56Z UPDATE: The Inspector is now available for viewing metadata from many different file formats. Here are answers to your questions (in order): 1) The !DiD removes the ... (last changed by sneu) 2007-07-24T15:56Z sneu 1.1 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/31_Jan_2007 http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/31_Jan_2007 WebHome http://www.loni.ucla.edu/twiki/bin/view/Debabeler/WebHome?t=2007-07-24T15:42Z Contact Information Scott Neu Laboratory of Neuro Imaging (LONI) Email: neu@loni.ucla.edu (Include the word "Debabeler" in the email subject line) NEVER email files ... (last changed by sneu) 2007-07-24T15:42Z sneu 1.6 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/WebHome http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/WebHome 14_Dec_2006 http://www.loni.ucla.edu/twiki/bin/view/Debabeler/14_Dec_2006?t=2007-05-30T23:37Z Scott, Doug the debabeler conversion now gives the same coordinates as mri convert for this image. thats great thanks a lot to you both. Doug Greve: Here's our C ... (last changed by sneu) 2007-05-30T23:37Z sneu 1.1 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/14_Dec_2006 http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/14_Dec_2006 16_Nov_2005 http://www.loni.ucla.edu/twiki/bin/view/Debabeler/16_Nov_2005?t=2006-07-27T22:51Z I'm very sorry for the delay of my answer. Honestly, I would like to thank you once again by all your efforts! I should have told you this almost two weeks ago.. ... (last changed by sneu) 2006-07-27T22:51Z sneu 1.1 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/16_Nov_2005 http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/16_Nov_2005 31_Mar_2006 http://www.loni.ucla.edu/twiki/bin/view/Debabeler/31_Mar_2006?t=2006-07-27T22:27Z Sorry, I don't have a 4D translation. The images displayed in MRIcro are up to MRIcro; different viewers will show them differently. Thanks, this works well. How ... (last changed by sneu) 2006-07-27T22:27Z sneu 1.1 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/31_Mar_2006 http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/31_Mar_2006 19_Jun_2006 http://www.loni.ucla.edu/twiki/bin/view/Debabeler/19_Jun_2006?t=2006-07-27T22:15Z I'm afraid this error indicates to me that the java installation is not correct on your linux box. I would recommend deinstalling java and then reinstalling it. I ... (last changed by sneu) 2006-07-27T22:15Z sneu 1.1 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/19_Jun_2006 http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/19_Jun_2006 30_Jun_2006 http://www.loni.ucla.edu/twiki/bin/view/Debabeler/30_Jun_2006?t=2006-07-27T22:10Z It is unlikely because 99 of usage involves DICOM ANALYZE conversions (not ANALYZE DICOM). This is because scanners output DICOM and most people start with that ... (last changed by sneu) 2006-07-27T22:10Z sneu 1.1 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/30_Jun_2006 http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/30_Jun_2006 21_Jun_2006 http://www.loni.ucla.edu/twiki/bin/view/Debabeler/21_Jun_2006?t=2006-07-27T21:59Z It is true that the ANALYZE file header does not contain orientation information. However, the Debabeler translation assumes that the ANALYZE file has been written ... (last changed by sneu) 2006-07-27T21:59Z sneu 1.1 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/21_Jun_2006 http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/21_Jun_2006 27_Jul_2006 http://www.loni.ucla.edu/twiki/bin/view/Debabeler/27_Jul_2006?t=2006-07-27T21:32Z Fantastic!! Thank you. I will recommend your software to others. Really appreciate all your help! That's a pretty big file; you will need to increase the memory to ... (last changed by sneu) 2006-07-27T21:32Z sneu 1.1 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/27_Jul_2006 http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/27_Jul_2006 WebNotify http://www.loni.ucla.edu/twiki/bin/view/Debabeler/WebNotify?t=2004-08-28T07:30Z This is a subscription service to be automatically notified by e-mail when topics change in this Debabeler web. This is a convenient service, so you do not have to ... (last changed by PeterThoeny) 2004-08-28T07:30Z PeterThoeny 1.4 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/WebNotify http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/WebNotify WebLeftBar http://www.loni.ucla.edu/twiki/bin/view/Debabeler/WebLeftBar?t=2004-08-16T05:52Z INCLUDINGWEB Web INCLUDINGWEB Web Home Changes Index Search Webs WEBLIST{" $name" separator ""} INCLUDE{" MAINWEB . WIKINAME LeftBar" warn "Create personal sidebar ... (last changed by ArthurClemens) 2004-08-16T05:52Z ArthurClemens 1.1 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/WebLeftBar http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/WebLeftBar WebRss http://www.loni.ucla.edu/twiki/bin/view/Debabeler/WebRss?t=2004-08-16T03:27Z TWiki's Debabeler web SCRIPTURL /view SCRIPTSUFFIX /Debabeler The Debabeler web of TWiki. TWiki is a Web-Based Collaboration Platform for the Corporate World. INCLUDE ... (last changed by PeterThoeny) 2004-08-16T03:27Z PeterThoeny 1.2 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/WebRss http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/WebRss WebSearchAdvanced http://www.loni.ucla.edu/twiki/bin/view/Debabeler/WebSearchAdvanced?t=2004-01-18T10:52Z INCLUDE{" TWIKIWEB .WebSearchAdvanced"} (last changed by PeterThoeny) 2004-01-18T10:52Z PeterThoeny 1.1 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/WebSearchAdvanced http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/WebSearchAdvanced WebIndex http://www.loni.ucla.edu/twiki/bin/view/Debabeler/WebIndex?t=2001-11-24T11:41Z SEARCH{"\. " scope "topic" regex "on" nosearch "on"} See also the faster WebTopicList (last changed by PeterThoeny) 2001-11-24T11:41Z PeterThoeny 1.2 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/WebIndex http://www.loni.ucla.edu/twiki/bin/rdiff/Debabeler/WebIndex
WebSearch   08 Aug 2001 - 05:26 - NEW   PeterThoeny

Number of topics: 0

  • Jump to topic: If you already know the name of the topic, enter the name of the topic into the GoBox at the top

  • WebChanges: Find out what topics in Debabeler have changed recently

WebSearchAdvanced   18 Jan 2004 - 10:52 - NEW   PeterThoeny
  • Advanced search:
    Topic text (body)     Search web(s)
    Topic name Sort by in reversed order

    Make search: Case sensitive RegularExpression search (semicolon ';' for and)
    Don't show: search string summaries     total matches
    Do show: BookView locked topic   topics (result count)

  • Jump to topic: If you already know the name of the topic, enter the name of the topic into the GoBox at the top

  • WebChanges: Find out what topics in Debabeler have changed recently

-- TWiki:Main.PeterThoeny - 18 Jan 2004

WebStatistics   22 Nov 2009 - 13:18 - r1.983   Main.guest

Statistics for Debabeler Web

Month: Topic
views:
Topic
saves:
File
uploads:
Most popular
topic views:
Top contributors for
topic save and uploads:
Nov 2009 8822 0 0 2489 WebHome
740 21_Jun_2006
716 31_Mar_2006
711 WebStatistics
696 16_Nov_2005
441 WebNotify
423 WebRss
397 WebPreferences
250 19_Jun_2006
250 31_Jan_2007
247 30_Jun_2006
 
Oct 2009 13663 0 0 3543 WebHome
1804 WebStatistics
1060 21_Jun_2006
997 16_Nov_2005
982 31_Mar_2006
867 WebRss
617 WebNotify
578 WebPreferences
371 31_Jan_2007
357 27_Jul_2006
351 14_Dec_2006
 
Sep 2009 17363 0 0 5683 WebStatistics
3375 WebHome
1202 WebRss
954 16_Nov_2005
940 21_Jun_2006
922 31_Mar_2006
589 WebPreferences
551 WebNotify
349 WebIndex
332 WebSearch
323 14_Dec_2006
 
Aug 2009 22151 0 0 9403 WebStatistics
3743 WebHome
1190 WebRss
1038 16_Nov_2005
1021 21_Jun_2006
1020 31_Mar_2006
614 WebNotify
606 WebPreferences
448 WebIndex
372 WebSearch
356 WebChanges
 
Jul 2009 18477 0 0 6867 WebStatistics
2953 WebHome
2036 WebRss
818 21_Jun_2006
793 31_Mar_2006
791 16_Nov_2005
503 WebPreferences
489 WebNotify
390 30_Jun_2006
380 27_Jul_2006
362 19_Jun_2006
 
Jun 2009 9986 0 0 3747 WebStatistics
1461 WebRss
1307 WebHome
497 21_Jun_2006
420 16_Nov_2005
360 31_Mar_2006
243 WebPreferences
239 WebNotify
195 30_Jun_2006
194 27_Jul_2006
193 31_Jan_2007
 
May 2009 48093 0 0 40891 WebRss
2886 WebStatistics
1173 WebHome
392 21_Jun_2006
363 16_Nov_2005
335 31_Mar_2006
232 WebPreferences
215 WebNotify
201 31_Jan_2007
182 30_Jun_2006
180 27_Jul_2006
 
Apr 2009 39033 0 0 34420 WebRss
2674 WebStatistics
506 WebHome
182 21_Jun_2006
152 31_Mar_2006
141 16_Nov_2005
133 WebPreferences
120 WebNotify
 73 27_Jul_2006
 71 WebTopicList
 71 31_Jan_2007
 
Mar 2009 8922 0 0 4013 WebStatistics
1870 WebRss
726 WebHome
275 21_Jun_2006
253 31_Mar_2006
233 16_Nov_2005
221 WebNotify
213 WebPreferences
130 WebIndex
117 31_Jan_2007
115 14_Dec_2006
 
Feb 2009 5801 0 0 3514 WebStatistics
498 WebHome
195 21_Jun_2006
184 WebNotify
173 31_Mar_2006
161 16_Nov_2005
139 WebRss
125 WebPreferences
 99 WebIndex
 90 31_Jan_2007
 88 WebSearch
 
Jan 2009 9438 0 0 6225 WebStatistics
597 WebHome
249 WebNotify
236 21_Jun_2006
234 16_Nov_2005
231 WebRss
222 31_Mar_2006
165 WebPreferences
141 WebSearch
132 31_Jan_2007
127 30_Jun_2006
 
Dec 2008 9354 0 0 5672 WebStatistics
613 WebHome
287 WebRss
270 21_Jun_2006
234 16_Nov_2005
233 WebNotify
227 WebPreferences
223 31_Mar_2006
171 30_Jun_2006
152 WebChanges
150 WebSearch
 
Nov 2008 5866 0 0 2579 WebStatistics
497 WebHome
251 21_Jun_2006
227 31_Mar_2006
226 WebNotify
218 16_Nov_2005
193 WebPreferences
167 WebRss
157 WebSearch
150 31_Jan_2007
145 30_Jun_2006
 
Oct 2008 4444 0 0 1250 WebStatistics
452 WebHome
244 16_Nov_2005
234 21_Jun_2006
226 WebNotify
215 31_Mar_2006
199 WebPreferences
164 WebSearch
140 WebRss
140 27_Jul_2006
139 31_Jan_2007
 
Sep 2008 3701 0 0 1852 WebStatistics
324 WebHome
158 21_Jun_2006
146 31_Mar_2006
145 WebPreferences
132 16_Nov_2005
120 WebNotify
 87 WebChanges
 78 WebRss
 74 WebSearch
 73 14_Dec_2006
 
Aug 2008 3964 0 0 2338 WebStatistics
404 WebHome
167 31_Mar_2006
162 21_Jun_2006
149 16_Nov_2005
119 WebNotify
101 WebPreferences
 64 WebRss
 55 WebIndex
 49 WebSearch
 45 WebChanges
 
Jul 2008 4675 0 0 3245 WebStatistics
319 WebHome
147 21_Jun_2006
124 16_Nov_2005
107 31_Mar_2006
107 WebNotify
101 WebPreferences
 93 WebRss
 59 WebIndex
 57 WebSearch
 54 WebChanges
 
Jun 2008 5309 0 0 3900 WebStatistics
387 WebHome
112 21_Jun_2006
104 WebNotify
102 16_Nov_2005
102 WebPreferences
 83 WebRss
 76 31_Mar_2006
 64 WebChanges
 59 WebSearch
 47 WebIndex
 
May 2008 4442 0 0 2871 WebStatistics
485 WebRss
316 WebHome
103 21_Jun_2006
101 16_Nov_2005
 94 31_Mar_2006
 74 WebNotify
 67 WebPreferences
 42 WebChanges
 41 WebIndex
 34 19_Jun_2006
 
Apr 2008 4483 0 0 3131 WebStatistics
316 WebHome
151 21_Jun_2006
139 16_Nov_2005
108 31_Mar_2006
 97 WebPreferences
 87 WebNotify
 51 WebRss
 49 WebSearch
 47 WebChanges
 40 19_Jun_2006
 
Mar 2008 3231 0 0 2325 WebStatistics
183 WebHome
 86 16_Nov_2005
 74 21_Jun_2006
 66 WebPreferences
 63 WebNotify
 54 31_Mar_2006
 38 WebIndex
 37 WebChanges
 35 WebSearch
 34 14_Dec_2006
 
Feb 2008 2316 0 0 1188 WebStatistics
262 WebHome
110 21_Jun_2006
104 WebPreferences
 96 WebNotify
 78 16_Nov_2005
 76 31_Mar_2006
 41 WebIndex
 39 WebRss
 39 WebChanges
 38 WebSearch
 
Jan 2008 1508 0 0 606 WebStatistics
187 WebHome
 98 21_Jun_2006
 76 31_Mar_2006
 67 WebNotify
 67 16_Nov_2005
 66 WebPreferences
 44 WebChanges
 37 WebSearch
 31 WebIndex
 31 19_Jun_2006
 
Dec 2007 1455 0 0 605 WebStatistics
171 WebHome
 95 WebPreferences
 79 21_Jun_2006
 62 16_Nov_2005
 61 31_Mar_2006
 56 WebNotify
 36 WebIndex
 34 WebChanges
 33 WebSearch
 31 14_Dec_2006
 
Nov 2007 1106 0 0 456 WebStatistics
168 WebHome
 81 16_Nov_2005
 74 21_Jun_2006
 58 31_Mar_2006
 38 WebNotify
 38 WebPreferences
 26 WebRss
 22 WebChanges
 21 WebSearch
 18 WebIndex
 
Oct 2007 1071 0 0 295 WebStatistics
218 WebHome
 82 21_Jun_2006
 59 31_Mar_2006
 54 16_Nov_2005
 47 WebNotify
 38 WebIndex
 33 WebPreferences
 30 WebSearch
 26 WebRss
 25 19_Jun_2006
 
Sep 2007 2370 0 0 1356 WebStatistics
291 WebHome
100 21_Jun_2006
 88 31_Mar_2006
 80 16_Nov_2005
 62 WebNotify
 48 WebPreferences
 38 WebChanges
 34 WebSearch
 30 WebIndex
 28 30_Jun_2006
 
Aug 2007 3754 1 0 1990 WebStatistics
375 WebHome
195 16_Nov_2005
190 21_Jun_2006
161 31_Mar_2006
133 WebPreferences
 99 WebNotify
 65 WebIndex
 59 WebTopicList
 53 31_Jan_2007
 52 WebLeftBar
  1 DavidHasson
Jul 2007 2280 2 0 855 WebStatistics
274 WebHome
133 21_Jun_2006
132 16_Nov_2005
109 WebNotify
 96 31_Mar_2006
 85 WebPreferences
 68 WebSearch
 64 WebIndex
 62 30_Jun_2006
 57 WebRss
  2 ScottNeu
Jun 2007 1940 0 0 572 WebStatistics
295 WebHome
116 16_Nov_2005
114 21_Jun_2006
 90 WebNotify
 83 WebSearch
 78 WebPreferences
 71 WebRss
 70 31_Mar_2006
 64 WebTopicList
 62 WebIndex
 
May 2007 1460 3 0 674 WebStatistics
133 WebHome
 69 16_Nov_2005
 65 21_Jun_2006
 58 WebPreferences
 54 31_Mar_2006
 45 WebSearch
 45 WebNotify
 42 WebRss
 40 30_Jun_2006
 37 WebTopicList
  3 ScottNeu
Apr 2007 2158 0 0 1462 WebStatistics
136 WebHome
 74 16_Nov_2005
 63 21_Jun_2006
 58 31_Mar_2006
 48 WebNotify
 46 WebPreferences
 34 WebSearch
 33 30_Jun_2006
 33 WebChanges
 30 WebRss
 
Mar 2007 4356 0 0 3260 WebStatistics
213 WebHome
 93 31_Mar_2006
 87 21_Jun_2006
 76 WebPreferences
 73 WebNotify
 66 WebSearch
 60 WebTopicList
 57 16_Nov_2005
 57 27_Jul_2006
 52 WebRss
 
Feb 2007 2329 0 0 1556 WebStatistics
155 WebHome
132 21_Jun_2006
110 16_Nov_2005
 80 31_Mar_2006
 43 WebPreferences
 36 WebNotify
 34 WebSearch
 25 WebTopicList
 24 WebIndex
 24 WebChanges
 
Jan 2007 4880 0 0 3880 WebStatistics
201 WebHome
129 21_Jun_2006
121 16_Nov_2005
115 31_Mar_2006
 76 WebNotify
 60 WebPreferences
 41 WebRss
 36 WebChanges
 34 WebSearch
 32 27_Jul_2006
 
Dec 2006 1884 0 0 1126 WebStatistics
155 WebHome
 75 31_Mar_2006
 70 WebNotify
 70 21_Jun_2006
 58 WebPreferences
 53 16_Nov_2005
 36 WebSearch
 36 WebChanges
 28 WebSearchAdvanced
 28 WebIndex
 
Nov 2006 3529 0 0 2078 WebStatistics
372 WebHome
149 31_Mar_2006
146 21_Jun_2006
132 16_Nov_2005
121 WebPreferences
115 WebNotify
 64 WebSearch
 62 WebRss
 44 WebIndex
 41 WebTopicList
 
Oct 2006 469 0 0 134 WebStatistics
 69 WebHome
 38 16_Nov_2005
 30 21_Jun_2006
 26 WebRss
 26 WebNotify
 25 31_Mar_2006
 19 WebPreferences
 15 19_Jun_2006
 14 WebSearch
 13 WebChanges
 
Sep 2006 575 0 0 296 WebStatistics
 46 WebHome
 27 WebNotify
 25 21_Jun_2006
 24 16_Nov_2005
 20 31_Mar_2006
 19 WebPreferences
 17 WebRss
 15 WebSearchAdvanced
 13 19_Jun_2006
 13 WebChanges
 
Aug 2006 573 0 0 142 WebStatistics
137 WebHome
 36 WebNotify
 29 WebPreferences
 25 21_Jun_2006
 24 WebSearch
 23 WebChanges
 22 31_Mar_2006
 19 16_Nov_2005
 18 WebRss
 16 WebTopicList
 
Jul 2006 0 0 0    
Jun 2006 0 0 0    
May 2006 0 0 0    
Apr 2006 0 0 0    
Mar 2006 0 0 0    
Feb 2006 0 0 0    
Jan 2006 0 0 0    
Dec 2005 0 0 0    
Nov 2005 0 0 0    
Oct 2005 0 0 0    
Sep 2005 0 0 0    
Aug 2005 0 0 0    
Jul 2005 0 0 0    
Jun 2005 0 0 0    
May 2005 0 0 0    
Apr 2005 0 0 0    
Mar 2005 0 0 0    
Feb 2005 0 0 0    

Notes:

  • Do not edit this topic, it is updated automatically. (You can also force an update)
  • TWikiDocumentation tells you how to enable the automatic updates of the statistics.
  • Suggestion: You could archive this topic once a year and delete the previous year's statistics from the table.
WebTopicList   24 Nov 2001 - 11:40 - NEW   PeterThoeny

Number of topics: 19